table.REFERENCE_EXPRESSION_GET Function

Syntax

Expression as C = Reference_Expression_Get()

Description

Get the expression needed to reconstruct a pointer.

Discussion

The <TBL>.REFERENCE_EXPRESSION_GET() method returns an Expression that generates a pointer to the table.

Example

dim tbl as P
tbl = table.open("customer")
? tbl.reference_expression_get()
= table.get("CUSTOMER")

See Also